home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / os2 / cenvi2.arj / KEYCODE.CMD < prev    next >
OS/2 REXX Batch file  |  1993-06-14  |  322b  |  7 lines

  1. @echo off
  2. REM ****************************************************
  3. REM *** KeyCode - Print values of characters pressed ***
  4. REM ****************************************************
  5. ECHO Press Key to see keyboard value; Press ESCAPE to exit
  6. cenvi do { key = getch(); printf("key=%%04X\n",key) } while(key != '\033')
  7.